home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / fcfgw40s.zip / SORTWAIT.H < prev    next >
C/C++ Source or Header  |  1996-04-21  |  946b  |  48 lines

  1. // SortWait.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSortWait dialog
  6.  
  7. class CSortWait : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSortWait();
  12.     ~CSortWait();
  13.  
  14.     BOOL Create(CWnd *pParent);
  15.     void StepIt();
  16.  
  17. // Dialog Data
  18.     //{{AFX_DATA(CSortWait)
  19.     enum { IDD = IDD_DIALOG_SORT_WAIT };
  20.     CProgressCtrl    m_Progress;
  21.     CAnimateCtrl    m_Animation;
  22.     //}}AFX_DATA
  23.  
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CSortWait)
  28.     public:
  29.     virtual BOOL DestroyWindow();
  30.     protected:
  31.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. protected:
  36.     void ReEnableParent();
  37.     void OnCancel();
  38.     void PumpMessages();
  39.  
  40.     BOOL m_bParentDisabled;
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CSortWait)
  44.     virtual BOOL OnInitDialog();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.